home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / unixlib.lha / unix / include / varargs.h < prev   
C/C++ Source or Header  |  1995-10-21  |  164b  |  12 lines

  1. #ifndef _VARARGS_H
  2. #define    _VARARGS_H 1
  3.  
  4. #include <stdarg.h>
  5.  
  6. #define    va_dcl    int va_alist;
  7.  
  8. #undef    va_start
  9. #define    va_start(ap) (ap = (char *)(&va_alist))
  10.  
  11. #endif
  12.